home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gp_sysv.c < prev    next >
C/C++ Source or Header  |  1995-09-10  |  2KB  |  67 lines

  1. /* Copyright (C) 1992 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_sysv.c */
  20. /* System V Unix-specific routines for Ghostscript */
  21.  
  22. /* This file contains a couple of standard Unix library procedures */
  23. /* that a few System V platforms don't provide. */
  24. /* Note that this file is NOT used for SVR4 platforms. */
  25. #include <errno.h>
  26. #include "stdio_.h"
  27. #include "time_.h"
  28. #include <sys/types.h>
  29. #include <sys/times.h>
  30. #include <sys/stat.h>
  31. #include <sys/param.h>
  32.  
  33. /* rename */
  34. int
  35. rename(const char *a, const char *b)
  36. {    if  (access(a, 0) == -1 )
  37.         return(-1);
  38.     unlink(b);
  39.     if ( link(a, b) == -1 )
  40.         return(-1);
  41.     if ( unlink(a) == -1 )
  42.     {    unlink(b);        /* ??? */
  43.         return(-1);
  44.     }
  45.     return(0);
  46. }
  47.  
  48. /* gettimeofday */
  49. #ifndef HZ
  50. #  define    HZ    100        /* see sys/param.h */
  51. #endif
  52. int
  53. gettimeofday(struct timeval *tvp, struct timezone *tzp)
  54. {    struct tms tms;
  55.     static long offset = 0;
  56.     long ticks;
  57.  
  58.     if (!offset)
  59.     {    time(&offset);
  60.         offset -= (times(&tms) / HZ);
  61.     }
  62.     ticks = times(&tms);
  63.     tvp->tv_sec = ticks/HZ + offset;
  64.     tvp->tv_usec = (ticks % HZ) * (1000*1000/HZ);
  65.     return 0;
  66. }
  67.